home *** CD-ROM | disk | FTP | other *** search
- function sidebarPrefInit() {
- sidebarCustomColorsChanged();
- sidebarScrollTypeChanged();
- }
-
- function sidebarCustomColorsChanged() {
- var sidebarCustomColorsCheckbox = document.getElementById("sidebarCustomColors");
- document.getElementById("sidebarCustomBackgroundColorLabel").disabled = !sidebarCustomColorsCheckbox.checked;
- document.getElementById("sidebarCustomBackgroundColor").disabled = !sidebarCustomColorsCheckbox.checked;
- }
-
- function sidebarScrollTypeChanged() {
- var sidebarScrollTypeComboBox = document.getElementById("sidebarScrollType");
- document.getElementById("sidebarThumbnailPreferredMinimumSizeLabel").disabled = (sidebarScrollTypeComboBox.selectedIndex == 0);
- document.getElementById("sidebarThumbnailPreferredMinimumSizePixelsLabel").disabled = (sidebarScrollTypeComboBox.selectedIndex == 0);
- document.getElementById("sidebarThumbnailPreferredMinimumSize").disabled = (sidebarScrollTypeComboBox.selectedIndex == 0);
- document.getElementById("sidebarAlwaysShowScrollbar").disabled = (sidebarScrollTypeComboBox.selectedIndex == 0);
- }